* Tree with 4 Nodes has height 2
*/
public int getTreeHeight() {
return MathUtils.log2nlz(leafCounter);
}
@Override
* Tree with 4 Nodes has height 2
*/
public int getTreeHeight() {
return (int)MathUtils.log2nlz(leafCounter);
}
@Override